home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Other Stuff
/
Other Stuff ’97
/
PowerOS Development
/
basic kernel source
/
boot.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-06-26
|
549b
|
28 lines
/*
boot.h
a header file for PowerOS
copyright 1996-1997 by Ben Martz
all rights reserved world wide
ANY AND ALL MODIFICATIONS TO THIS SOURCE MUST CREDIT THE ORIGINAL
AUTHOR, BEN MARTZ (benmartz@ic.net), AND MUST BE GIVEN TO THE AUTHOR
FOR INTEGRATION INTO THE MAIN PowerOS SOURCE TREE. THANK YOU FOR YOUR
COOPERATION!
*/
#ifndef ___BOOT___
#define ___BOOT___
#define BOOTVERSION 1
typedef struct {
u_long version;
char *v_baseaddr;
short v_rowbytes;
short v_depth;
short v_width,v_height;
u_long m_bytes;
} KernelBootData;
#endif